 @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



 :root {
     --background-color: #ffffff;
     --default-color: #000000;
     --heading-color: #2d465e;
     --accent-color: #0092d8;
     --surface-color: #ffffff;
     --contrast-color: #ffffff;
 }

 /* Nav Menu Colors  */
 :root {
     --nav-color: #212529;
     --nav-hover-color: #0092d8;
     --nav-mobile-background-color: #ffffff;

 }

 body {
     font-family: "Manrope", serif;
     font-optical-sizing: auto;
     font-weight: 600;
     font-style: normal;
     overflow-x: hidden;
     background-color: white;
 }
/* header */
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);

    transition: all 0.5s;
    z-index: 997;

}

.header .header-container {
    background: var(--surface-color);
max-width: 1900px;
    padding: 10px 100px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    max-width: 1900px;

}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
   

}

.header .logo {
    line-height: 1;
    padding-left: 5px;
    margin: -15px;
}

.header .logo img {
    max-height: 70px;
    margin-right: 8px;
}

.header .logotwo {
    line-height: 1;
    padding-left: 5px;
    margin: -15px;
    padding-top: 10px;
}

.header .logotwo img {
    max-height: 120px;
    margin-right: 8px;
}
.navmenu a {
    text-decoration: none;
    background-color: #fff;

}

.btn-getstarted {
    background-color: var(--accent-color);
    color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    margin: 20px;
 
    
}

.btn-getstarted:hover {
    background-color: black;
   color: #fff;
}

.navmenu .dropdown ul {
    background-color: white;
    padding: 0;
    margin: 0;
    list-style: none;
}


.navmenu .dropdown ul li a {
    color: black;
    /* Set text color */
    padding: 10px 15px;
    /* Add padding for items */
    text-decoration: none;
    /* Remove underline */
    display: block;
    /* Make items block-level for better click area */
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
    background-color: var(--accent-color);
    /* Change background color on hover */
}


@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left:  100%;
        visibility: hidden;
      }
    
      .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        right: 100%;
        visibility: visible;
        width: 115%;
      }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}







 /* Hero Section */

 .hr-payroll-bg {
     background-color: #060422;
     max-width: 1900px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     height: 600px;

 }

 .hr-payroll-content {
     max-width: 50%;

 }

 .hr-payroll-image {
     max-width: 50%;

     margin-top: 250px;

 }

 .hr-payroll-image img {
     width: 100%;

     height: auto;
 }

 .display-4-hr-payroll {
     font-size: 3rem;

     color: #ffffff;

     padding-left: 140px;
     padding-top: 200px;
 }

 .display-2-hr-payroll {
     font-size: 4.5rem;

     font-weight: bolder;

     background: linear-gradient(135deg, #006aff, #8119e2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent; 

     padding-left: 140px;

 }

 .lead-hr-payroll {
     color: #ffffff;
     /* White color */
     font-size: 1.2rem;
     /* Font size */
     padding-left: 140px;


 }

 .hr-payroll-back-heading {
     position: absolute;
     top: 15%;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.1;
     font-size: 8rem;
     font-weight: bold;
     color: #ffffff;
     text-align: center;
     line-height: 1.2;
     z-index: 0;
     /* Send to back */
 }










 /* well managed HR& Payroll(below hero section) */

 .hero-section-well-managed-HR-Payroll {
     display: flex;
     align-items: center;
     padding: 60px 20px;
 }

 .hero-text-well-managed-HR-Payroll {
     max-width: 50%;
     /* Left side content */
     margin-left: 250px;
     /* Adjust margin as per your layout */
 }

 .hero-image-well-managed-HR-Payroll {
     max-width: 50%;
     /* Right side image */
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-image-well-managed-HR-Payroll img {
     width: 150%;
     /* Responsive image */
     height: auto;

 }

 .btn-demo-well-managed-HR-Payroll {
     background-color: white;
     /* White background */
     background: linear-gradient(135deg, #006aff, #8119e2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent; 
     /* Blue text */
     border: 2px solid #007bff;
     /* Blue border */
     border-radius: 0.25rem;
     /* Border radius */
     transition: box-shadow 0.3s, background-color 0.3s, color 0.3s;
     margin-top: 40px;
 }

 .btn-demo-well-managed-HR-Payroll:hover {
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
     /* Shadow on hover */
     background-color: #007bff;
     /* Blue background on hover */
     color: white;
     /* White text on hover */
 }

 .text-black {
     color: black;
     /* Black color for normal text */
     font-weight: bold;
     /* Bold text */
 }

 .text-color {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
     /* Set this to your desired color for "HR & Payroll" */
     font-weight: bold;
     /* Bold text */
 }

 .lead-well-managed-HR-Payroll {
     margin-top: 40px;
 }





 /* Unified POS system */

 .text-highlight-unified-pos-system {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
     /* Change this color as needed */
 }


 .unified-pos-system-heading {
     max-width: 70%;
     font-size: 2.75rem;
     margin-left: 150px;
     /* Added left margin of 50px */
 }

 .unified-pos-system-text {
     color: #D3D3D3;
     /* Light grey color */
     font-weight: normal;
     /* Ensures text is not bold */
     max-width: 100%;
     margin-left: 100px;
 }


 /* image below unified POS system */
 .pos-image-section {
     margin: 0 auto;
     /* Center the image section */
     width: 1500px;
     display: flex;
     justify-items: center;
 }

 .pos-image-item {
     margin-bottom: 20px;
     /* Space below the image */
     max-width: 800px;
     margin-left: 20px;
 }

 .pos-image-caption-one {
     text-align: center;
     /* Center the caption text */
     margin-top: 5px;
     /* Space above the caption */
     font-size: 1rem;
     /* Font size for caption */
     font-weight: normal;
     /* Normal weight for caption */
     color: #6c757d;
     /* Subtle color for caption text */
 }






 /* solition section header  */

 .solution-heaidng-section {
     padding: 80px 190px;
     background-color: #ffffff;
     /* Adjust background as needed */
 }

 .solution-heaidng-section h1 {
     font-size: 3rem;
     /* Adjust size as needed */
     font-weight: bold;
     text-align: center;
     margin-bottom: 20px;

 }

 .solution-heaidng-section p {
     text-align: center;
     color: #555;
     /* Adjust color as needed */
     margin-bottom: 40px;
 }

 .tricky {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
     /* Adjust color for emphasis */
 }


 /* solition section */
 .solution-section .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectiontext {
     max-width: 500px;
     text-align: justify;
 }

 .solution-section img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */

 }



 /* solition sectiontwo */
 .solution-sectiontwo .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectiontwo img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */

 }


 /* solition section 3  */
 .solution-sectionthree .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectionthree img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */

 }



 /* solution sectionfour */
 .solution-sectionfour .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectionfour img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */

 }


 /* solution sectionfive */
 .solution-sectionfive .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectionfive img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */
 }



 /* solution sectionsix */
 .solution-sectionsix .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }

 .solution-sectionsix img {
     max-width: 100%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */
 }


 /* solution sectionsvn */
 .solution-sectionsvn .row {
     display: flex;
     align-items: center;

 }

 .solution-sectionsvn img {
     max-width: 120%;
     /* Responsive image */
     height: auto;
     border-radius: 10px;
     /* Rounded corners for the image */
 }

 /* Add a slim blue border to all images */
 .border-blue {
     border: 2px solid #007bff;

     border-radius: 10px;

     padding: 5px;

 }

 .large-image {
     width: 40rem;
     max-height: 450px;
     object-fit: contain;
 }

 /* Center and style the icons and headings */
 .icon-heading {
     margin-bottom: 20px;
     /* Space between icon and heading */
     text-align: center;
 }

 .icon-heading i {
     font-size: 105px;
     /* Larger icon size */
     display: block;
     background: linear-gradient(135deg, #006aff, #8119e2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent; 
     margin-bottom: 10px;
     text-align: left;
 }

 .icon-heading h2 {
     font-size: 24px;
     font-weight: bold;
     text-align: left;
 }

 .solution-sectiontext {
     text-align: justify;
     margin-top: 20px;
 }

 /* Padding for all solution sections */


 /* Add space when images are on the left */
 .solution-section img,
 .solution-sectionthree img,
 .solution-sectionfive img,
 .solution-sectionsvn img {
     margin-left: -30px;

 }

 /* Add a black border and blue shadow to images */
 .solution-section img,
 .solution-sectiontwo img,
 .solution-sectionthree img,
 .solution-sectionfour img,
 .solution-sectionfive img,
 .solution-sectionsix img,
 .solution-sectionsvn img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     border: 4px solid black;
     /* Black border */
     box-shadow: 0 0 20px rgba(0, 123, 255, 0.7);
     /* Blue shadow */
     padding: 5px;
     object-fit: contain;
 }

 /* Set a larger width for the images */
 .large-image {
     width: 50rem;
     /* Increased width */
     max-height: 500px;
     /* Increased max height */
     object-fit: contain;
 }

 /* Solution sections (optional) */
 .solution-section .row,
 .solution-sectiontwo .row,
 .solution-sectionthree .row,
 .solution-sectionfour .row,
 .solution-sectionfive .row,
 .solution-sectionsix .row,
 .solution-sectionsvn .row {
     display: flex;
     align-items: center;
     padding: 50px;
 }







.background-image {  
    background-image: url('pics/trackpic2.jpg');
    height: 500px;  
    max-width: 1900px;
    margin: 0 auto;
    background-size: cover;  
    background-position: center; 
    display: flex;   
    align-items: center;  
}  

.blurred-container {  
    background-color: rgba(255, 255, 255, 0.048);   
    backdrop-filter: blur(12px);   
    color: white;  
    padding: 40px;   
    border-radius: 10px; 
    max-width: 800px;
    text-align: left; 
    flex: 1;  
}  

.person-image {  
    max-width: 300px; 
    border-radius: 10px;   
}  

.custom-title {  
    font-size: 2.5rem; 
    font-weight: bold;  
}  

.custom-subtitle {  
    font-size: 1.25rem;  
    margin-bottom: 20px; 
}  

.btn-custom {  
    background-color: #000000; 
    color: white; 
}
.btn-custom:hover{
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: white; 
}












/* Footer */
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-image: url('pics/darkergreyfooter.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
}

.fot-btn {
    transition: background-color 0.3s ease;
    /* Smooth transition */
    background-color: var(--accent-color);
    color: #fdfdfd;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.fot-btn:hover {
    background-color: black !important;
    /* Change to black on hover */
    color: white;
    /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
    max-height: 160px;
    margin-right: 6px;
    width: 200px;

}

.footer-contact {
    margin-top: -40px;
}

.footer .footer-about p {
    font-size: 16px;
    padding-left: 10px;
    color: white;
}

.footer .social-links a {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-top: 60px;

}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footer .footer-links ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    color: white;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: rgb(255, 255, 255);
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

.footer-contact,
footer .footer-links ul li a:hover {
    color: var(--accent-color);
}

.contact-footer-links a {
    color: #ffffff;
    text-decoration: none;
}



 /* Responsive adjustments for header */
 @media (max-width: 1024px) {
     .header {
         padding: 5px 0;
     }

     .header .logo img {
         max-height: 70px;

     }

     .stats-container {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 30px;
     }

     .stats-img {
         margin: 0 auto 20px;
         height: auto;
     }

     .service-card h5 {
         font-size: 18px;
     }

     .progress {
         width: 90%;
         max-width: 400px;
     }

     .testimonial-section {
         flex-direction: column;
         height: auto;
         padding: 20px 0;

     }

     .testimonial-img {
         margin: 0 auto 20px;
     }

     .testimonial-content {
         margin-left: 0;
         max-width: 70%;
         text-align: center;
         margin-left: 170px;

     }

     .heading1,
     .heading2 {
         text-align: center;
     }

     .logo-container {
         margin-top: 70px;
         padding: 0 15px;
     }

     .b-card {
         margin: 10px;
         max-width: 100%;
     }

     .card {
         width: 100%;
         height: auto;
         margin-bottom: 20px;
     }

     .feature-box {
         padding: 20px;
         margin-bottom: 20px;
     }

     .image-wrapper {
         margin-left: 20px;
     }

 }

 /* Testimonial section - image on top, slider below */
 @media (max-width: 900px) {
     .header {
         padding: 5px 0;
     }

     .header .logo img {
         max-height: 70px;
     }

     .service-card h5 {
         font-size: 12px;
     }

     .stats-container {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .stats-img {
         margin: 0 auto 20px;
         height: auto;
     }

     .progress {
         width: 100%;
         max-width: 300px;
     }

     .testimonial-section {
         flex-direction: column;
         height: auto;
     }

     .testimonial-img {
         margin: 0 auto 20px;
     }

     .testimonial-content {
         margin-left: 130px;
         max-width: 70%;
         text-align: left;
         align-content: justify;
     }

     .heading1,
     .heading2 {
         text-align: center;
         max-width: 40rem;
     }
 }